Function Reference

WinActive

Checks to see if a specified window exists and is currently active.

WinActive ( "title" [, "text"] )

 

Parameters

title The title of the window to check. See Title special definition.
text [optional] The text of the window to check.

 

Return Value

Success: Returns 1 if window is active.
Failure: Returns 0 otherwise.

 

Remarks

None.

 

Related

WinExists, WinWait, WinWaitActive, WinWaitClose, WinWaitNotActive, WinTitleMatchMode (Option)

 

Example


If WinActive("Untitled -") Then
    MsgBox(0, "", "Window was active")
EndIf